All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.app.DPSServerContext

java.lang.Object
   |
   +----com.apple.alpha.core.NativeObject
           |
           +----com.apple.alpha.app.GraphicsContext
                   |
                   +----com.apple.alpha.app.DPSContext
                           |
                           +----com.apple.alpha.app.DPSServerContext

public class DPSServerContext
extends DPSContext
This class wraps the Objective-C class NSDPSServerContext.


Constructor Index

 o DPSServerContext()
This default constructor is equivalent to Objective-C's [[NSDPSServerContext alloc] init].
 o DPSServerContext(boolean, int)
Protected constructor used by the bridge to wrap an Objective-C object.

Method Index

 o areEventsTraced()
A wrapper for the + areEventsTraced Objective-C class method.
 o hostName()
A wrapper for the - hostName Objective-C instance method.
 o isDeadKeyProcessingEnabled()
A wrapper for the + isDeadKeyProcessingEnabled Objective-C class method.
 o isEventCoalescingEnabled()
A wrapper for the + isEventCoalescingEnabled Objective-C class method.
 o nextEventMatchingMask(int, Date, String, boolean)
A wrapper for the + nextEventMatchingMask:untilDate:inMode:dequeue: Objective-C class method.
 o nextEventMatchingMaskInMode(int, Date, String, boolean)
A wrapper for the - nextEventMatchingMask:untilDate:inMode:dequeue: Objective-C instance method.
 o sendEOF()
A wrapper for the - sendEOF Objective-C instance method.
 o sendPort(Port, boolean)
A wrapper for the - sendPort:withAllRights: Objective-C instance method.
 o serverName()
A wrapper for the - serverName Objective-C instance method.
 o setDeadKeyProcessingEnabled(boolean)
A wrapper for the + setDeadKeyProcessingEnabled: Objective-C class method.
 o setEventCoalescingEnabled(boolean)
A wrapper for the + setEventCoalescingEnabled: Objective-C class method.
 o setEventsTraced(boolean)
A wrapper for the + setEventsTraced: Objective-C class method.

Constructors

 o DPSServerContext
 protected DPSServerContext(boolean shouldAllocate,
                            int objcObject)
Protected constructor used by the bridge to wrap an Objective-C object. It should never be invoked directly.

 o DPSServerContext
 public DPSServerContext()
This default constructor is equivalent to Objective-C's [[NSDPSServerContext alloc] init].

Methods

 o hostName
 public native String hostName()
A wrapper for the - hostName Objective-C instance method.

 o serverName
 public native String serverName()
A wrapper for the - serverName Objective-C instance method.

 o sendPort
 public native int sendPort(Port port,
                            boolean flag)
A wrapper for the - sendPort:withAllRights: Objective-C instance method.

 o sendEOF
 public native void sendEOF()
A wrapper for the - sendEOF Objective-C instance method.

 o nextEventMatchingMaskInMode
 public native Event nextEventMatchingMaskInMode(int mask,
                                                 Date expiration,
                                                 String mode,
                                                 boolean deqFlag)
A wrapper for the - nextEventMatchingMask:untilDate:inMode:dequeue: Objective-C instance method.

 o nextEventMatchingMask
 public static native Event nextEventMatchingMask(int mask,
                                                  Date expiration,
                                                  String mode,
                                                  boolean deqFlag)
A wrapper for the + nextEventMatchingMask:untilDate:inMode:dequeue: Objective-C class method.

 o setEventCoalescingEnabled
 public static native void setEventCoalescingEnabled(boolean flag)
A wrapper for the + setEventCoalescingEnabled: Objective-C class method.

 o isEventCoalescingEnabled
 public static native boolean isEventCoalescingEnabled()
A wrapper for the + isEventCoalescingEnabled Objective-C class method.

 o setDeadKeyProcessingEnabled
 public static native void setDeadKeyProcessingEnabled(boolean flag)
A wrapper for the + setDeadKeyProcessingEnabled: Objective-C class method.

 o isDeadKeyProcessingEnabled
 public static native boolean isDeadKeyProcessingEnabled()
A wrapper for the + isDeadKeyProcessingEnabled Objective-C class method.

 o setEventsTraced
 public static native void setEventsTraced(boolean flag)
A wrapper for the + setEventsTraced: Objective-C class method.

 o areEventsTraced
 public static native boolean areEventsTraced()
A wrapper for the + areEventsTraced Objective-C class method.


All Packages  Class Hierarchy  This Package  Previous  Next  Index